type os.fileStat

14 uses

	os (current package)
		stat_linux.go#L12: func fillFileStatFromSys(fs *fileStat, name string) {
		stat_unix.go#L19: 	var fs fileStat
		stat_unix.go#L30: 	var fs fileStat
		stat_unix.go#L43: 	var fs fileStat
		types.go#L58: func (fs *fileStat) Name() string { return fs.name }
		types.go#L59: func (fs *fileStat) IsDir() bool  { return fs.Mode().IsDir() }
		types.go#L68: 	fs1, ok1 := fi1.(*fileStat)
		types.go#L69: 	fs2, ok2 := fi2.(*fileStat)
		types_unix.go#L15: type fileStat struct {
		types_unix.go#L23: func (fs *fileStat) Size() int64        { return fs.size }
		types_unix.go#L24: func (fs *fileStat) Mode() FileMode     { return fs.mode }
		types_unix.go#L25: func (fs *fileStat) ModTime() time.Time { return fs.modTime }
		types_unix.go#L26: func (fs *fileStat) Sys() any           { return &fs.sys }
		types_unix.go#L28: func sameFile(fs1, fs2 *fileStat) bool {